
Label start
	
	v1 = 0
	v2 = 0
	Label attendi1
		If Slot(3) > 500
			v1 = v1 + 1     
			Gosub conta1
		Else
			If Slot(7) > 500
				v2 = v2 +1
				Gosub conta1
			EndIf
		EndIf
		Goto attendi1
	Stop	 ' << questo stop  inutile ma lo lasciamo per chiarezza
	
	
Label conta1
	v3 = Slot(3)
	v4 = Slot(7)
	If (v3 = 0 And v4 = 4) 
		If v3 > 4
			Gosub postazione1
			If v4 >0
				Gosub postazione3
			EndIf
		EndIf
	EndIf					' << questo endif mancava
	
	If (v3 = 1 And v4 = 3) 
		If v3 > 3
			Gosub postazione1
			If v4 >1
				Gosub postazione3
			EndIf
		EndIf
	EndIf					' << questo endif mancava
	
	If (v3 = 2 And v4 = 2)
		If v3 > 2
			Gosub postazione1
			If v4 > 2
				Gosub postazione3
			EndIf
		EndIf
	EndIf					' << questo endif mancava
	
	If (v3 = 3 And v4 = 1) 
		If v3 > 1
			Gosub postazione1
			If v4 > 3
				Gosub postazione3
			EndIf
		EndIf
	EndIf					' << questo endif mancava
	
	If (v3 = 4 And v4 = 0) 
		If v3 > 0
			Gosub postazione1
			If v4 > 4
				Gosub postazione3
			EndIf
		EndIf
	EndIf					' << questo endif mancava
Goto conta1
